/* Estilo general */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff8f0;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Título principal */
h1 {
  text-align: center;
  margin: 40px 0 20px;
  color: #080808;
  font-size: 2.2em;
}

/* Contenedor del carrito */
.carrito {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Fichas de productos */
.ficha_carrito {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  background-color: #fffdfd;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.ficha_carrito img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 1.5rem;
}

.ficha_carrito .info {
  flex: 1;
}

.ficha_carrito .info h3 {
  margin: 0;
  font-size: 1.2em;
  color: #050505;
}

.ficha_carrito .info p {
  margin: 5px 0;
  font-size: 0.95em;
  color: #0a0a0a;
}

.ficha_carrito .precio {
  font-weight: bold;
  color: #f3ecec;
  font-size: 1.1em;
}

/* Resumen del pedido */
.resumen {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.05em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.resumen h2 {
  margin-top: 0;
  color: #030303;
  font-size: 1.4em;
}

.resumen p {
  margin: 10px 0;
}

/* Sección de envío de correo */
.email-section {
  margin-top: 30px;
  text-align: center;
  background-color: #fdf2f2;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.email-section h2 {
  color: #0f0f0f;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.email-section label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.email-section input {
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.email-section .nota {
  margin-top: 10px;
  font-size: 0.9em;
  color: #555;
}

.email-section button {
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #0f0f0f;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.email-section button:hover {
  background-color: #080808;
}

/* Sección informativa */
footer.nosotros {
  margin: 50px auto;
  max-width: 900px;
  padding: 25px;
  background-color: #f3f3f3;
  border-radius: 10px;
  text-align: center;
}

footer.nosotros h2 {
  color: #161515;
  margin-bottom: 15px;
}

footer.nosotros p {
  font-size: 1em;
  margin: 8px 0;
}
